home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MDIDLG.PAK / TEST.RC < prev    next >
Text File  |  1997-05-06  |  2KB  |  64 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1995 by Borland International, All Rights Reserved
  4. //
  5. // Filename:    Test.rc
  6. //
  7. // Date:        27-Apr-95
  8. //
  9. // Description:
  10. //----------------------------------------------------------------------------
  11. #include <owl/owlapp.rc>
  12. #include <owl/validate.rc>
  13. #include <owl/window.rh>
  14. #include <owl/except.rc>
  15. #include <owl/mdi.rh>
  16. #include "Test.rh"
  17.  
  18. IDM_MDIMENU MENU
  19. {
  20.  POPUP "&Window"
  21.  {
  22.   MENUITEM "&New", CM_CREATECHILD
  23.   MENUITEM "&Cascade", CM_CASCADECHILDREN
  24.   MENUITEM "&Tile", CM_TILECHILDREN
  25.   MENUITEM "Arrange &Icons", CM_ARRANGEICONS
  26.   MENUITEM "C&lose All", CM_CLOSECHILDREN
  27.  }
  28.  POPUP "&Help"
  29.  {
  30.   MENUITEM "&About", CM_ABOUT
  31.  }
  32. }
  33.  
  34. IDD_MDIDIALOG DIALOG 7, 18, 275, 121
  35. STYLE 0x4L | WS_CHILD | WS_VISIBLE | WS_CAPTION
  36. CAPTION "Test Dialog"
  37. FONT 8, "MS Sans Serif"
  38. {
  39.  LTEXT "Name", -1, 5, 8, 109, 11
  40.  EDITTEXT IDC_NAME, 5, 23, 109, 14
  41.  LTEXT "Number between 1 and 1000", -1, 5, 41, 109, 11
  42.  EDITTEXT IDC_NUMBER, 5, 56, 109, 14
  43.  CHECKBOX "Enable number", IDC_ENABLENUMBER, 133, 56, 60, 12, BS_AUTOCHECKBOX | WS_TABSTOP
  44.  LTEXT "Phone", -1, 5, 74, 109, 11
  45.  EDITTEXT IDC_PHONE, 5, 89, 109, 14
  46.  DEFPUSHBUTTON "OK", IDOK, 218, 6, 50, 14
  47.  PUSHBUTTON "Cancel", IDCANCEL, 218, 24, 50, 14
  48.  PUSHBUTTON "Help", IDHELP, 218, 42, 50, 14
  49.  CHECKBOX "Enable Help", IDC_ENABLEHELP, 214, 61, 53, 12, BS_AUTOCHECKBOX | WS_TABSTOP
  50. }
  51.  
  52. IDD_ABOUT DIALOG 7, 18, 194, 69
  53. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | 4
  54. CAPTION "About"
  55. FONT 8, "MS Sans Serif"
  56. {
  57.  DEFPUSHBUTTON "OK", IDOK, 13, 44, 50, 14
  58.  PUSHBUTTON "Cancel", IDCANCEL, 73, 44, 50, 14
  59.  PUSHBUTTON "Help", IDHELP, 133, 44, 50, 14
  60.  ICON IDI_OWLAPP, -1, 22, 10, 18, 20
  61.  CTEXT "About MDI Dialog Example", -1, 41, 19, 131, 11
  62. }
  63.  
  64.